big_integer
A data type that represents large integers with high precision, capable of handling very large numbers. Uses java.math.BigInteger
internally.
Since
0.12.0
Properties
Functions
Absolute value of the big_integer.
Creates a big_integer from a byte_array.
Creates a big_integer from an unsigned byte_array.
Creates a big_integer from a hexadecimal string representation
Creates a big_integer from a text representation
Creates a big_integer from a string representation with a specific base (radix, from 2 to 36).
Maximum of two big_integer values.
Maximum of a big_integer and a decimal value.
Minimum of two big_integer values.
Minimum of a big_integer and a decimal value.
Raises this big_integer to the power of the given exponent. Can be used in a database at-expression.
The exponent cannot be negative.
Error on overflow, if the result is out of integer or big_integer range.
If the exponent is 0, the result is always 1; if the exponent is 1, the result is the original value.
Converts this big_integer to a byte_array.
Converts this big_integer to an unsigned byte_array.
Converts this big_integer to a decimal value.
Converts this big_integer to an integer value.